home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
m
/
maxonc++2.dms
/
maxonc++2.adf
/
MCPIncl.lha
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-10
|
172b
|
11 lines
#ifndef _INCLUDE_SETJMP_H
#define _INCLUDE_SETJMP_H
#define _JMP_BUF_SIZE 16
typedef int jmp_buf[_JMP_BUF_SIZE];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
#endif